hash/maphash.Hash.n (field)

24 uses

	hash/maphash (current package)
		maphash.go#L107: 	n     int           // number of unflushed bytes
		maphash.go#L132: 	if h.n == len(h.buf) {
		maphash.go#L135: 	h.buf[h.n] = b
		maphash.go#L136: 	h.n++
		maphash.go#L147: 	if h.n > 0 && h.n <= bufSize {
		maphash.go#L148: 		k := copy(h.buf[h.n:], b)
		maphash.go#L149: 		h.n += k
		maphash.go#L150: 		if h.n < bufSize {
		maphash.go#L168: 	h.n = len(b)
		maphash.go#L177: 	if h.n > 0 && h.n <= bufSize {
		maphash.go#L178: 		k := copy(h.buf[h.n:], s)
		maphash.go#L179: 		h.n += k
		maphash.go#L180: 		if h.n < bufSize {
		maphash.go#L194: 	h.n = len(s)
		maphash.go#L215: 	h.n = 0
		maphash.go#L223: 	h.n = 0
		maphash.go#L228: 	if h.n != len(h.buf) {
		maphash.go#L232: 	h.state.s = rthash(h.buf[:h.n], h.state.s)
		maphash.go#L233: 	h.n = 0
		maphash.go#L245: 	return rthash(h.buf[:h.n], h.state.s)
		maphash.go#L312: 	if h.n != 0 {
		maphash.go#L313: 		writeComparable(h, h.n)